home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9207.ARJ / 1007092A < prev    next >
Text File  |  1992-06-03  |  311b  |  14 lines

  1.  
  2. void get_message_static(char *string)
  3.         {
  4.         static char *p_static = "Some string";
  5.         strcpy(string, p_static);
  6.         return;
  7.         }
  8. void get_message_auto(char *string)
  9.         {
  10.         char *p_auto = "Some string";
  11.         strcpy(string, p_auto);
  12.         return;
  13.         }
  14.